home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 19
/
CU Amiga Magazine's Super CD-ROM 19 (1998)(EMAP Images)(GB)[!][issue 1998-02].iso
/
CUCD
/
Sound
/
MrMPEG
/
Clear.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1997-11-22
|
285b
|
14 lines
/* Clear.rexx */
options results; address MrMPEG
MUIA_List_Entries = 0x80421654; MUIA_ShowMe = 0x80429ba8
MUIV_List_Remove_Active = -1
list ID SLIST ATTRS MUIA_List_Entries; max = result
do i = 0 to max - 1
list ID SLIST REMOVE POS MUIV_List_Remove_Active
end
call Stop()
return